- add it to the header
- add the symbol to gtk.symbols
- fix coding style and check for allocation != NULL
gtk_widget_event
gtk_widget_freeze_child_notify
gtk_widget_get_accessible
+gtk_widget_get_allocation
gtk_widget_get_ancestor
gtk_widget_get_app_paintable
gtk_widget_get_child_requisition
* Since: 2.18
*/
void
-gtk_widget_get_allocation (GtkWidget *widget, GtkAllocation *allocation)
+gtk_widget_get_allocation (GtkWidget *widget,
+ GtkAllocation *allocation)
{
g_return_if_fail (GTK_IS_WIDGET (widget));
+ g_return_if_fail (allocation != NULL);
*allocation = widget->allocation;
}
gboolean gtk_widget_get_child_visible (GtkWidget *widget);
GdkWindow* gtk_widget_get_window (GtkWidget *widget);
+void gtk_widget_get_allocation (GtkWidget *widget,
+ GtkAllocation *allocation);
+
gboolean gtk_widget_child_focus (GtkWidget *widget,
GtkDirectionType direction);
gboolean gtk_widget_keynav_failed (GtkWidget *widget,